From 110aec09d058e5824ad2d08aebbc285495f7d807 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20H=C3=A4rdeman?= Date: Tue, 9 Dec 2025 08:58:23 +0100 Subject: [PATCH] luci-mod-status: Host -> Hostname in DHCPv6 table MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The DHCPv4 table already calls it "Hostname", and so do the DHCPv[46] tables in luci-mod-network, so rename this one as well for consistency. Note that "Hostname" is already used elsewhere, so this shouldn't cause translation issues (I think). Signed-off-by: David Härdeman --- .../htdocs/luci-static/resources/view/status/include/40_dhcp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js index 990b16704b..badfeece2b 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js @@ -166,7 +166,7 @@ return baseclass.extend({ const table6 = E('table', { 'id': 'status_leases6', 'class': 'table leases6' }, [ E('tr', { 'class': 'tr table-titles' }, [ L.hasSystemFeature('odhcpd', 'dhcpv6') ? E('th', { 'class': 'th' }, _('Interface')) : E([]), - E('th', { 'class': 'th' }, _('Host')), + E('th', { 'class': 'th' }, _('Hostname')), E('th', { 'class': 'th' }, _('IPv6 addresses')), E('th', { 'class': 'th' }, _('DUID')), E('th', { 'class': 'th' }, _('IAID')), -- 2.30.2